-use crate::Repo;
#[cfg(any(feature = "v2016_4", feature = "dox"))]
use crate::RepoListRefsExtFlags;
+use crate::{Checksum, Repo};
use gio;
use glib;
use glib::translate::*;
}
}
}
+
+ pub fn write_content<P: IsA<gio::InputStream>, Q: IsA<gio::Cancellable>>(
+ &self,
+ expected_checksum: Option<&str>,
+ object_input: &P,
+ length: u64,
+ cancellable: Option<&Q>,
+ ) -> Result<Checksum, Error> {
+ unsafe {
+ let mut error = ptr::null_mut();
+ let mut out_csum = ptr::null_mut();
+ let _ = ostree_sys::fixed::ostree_repo_write_content(
+ self.to_glib_none().0,
+ expected_checksum.to_glib_none().0,
+ object_input.as_ref().to_glib_none().0,
+ length,
+ &mut out_csum,
+ cancellable.map(|p| p.as_ref()).to_glib_none().0,
+ &mut error,
+ );
+ if error.is_null() {
+ Ok(from_glib_full(out_csum))
+ } else {
+ Err(from_glib_full(error))
+ }
+ }
+ }
}
-pub use libc::stat as stat;
+pub use libc::stat;
+
+pub mod fixed {
+ use crate::OstreeRepo;
+ use glib::gboolean;
+ use libc::c_char;
+
+ extern "C" {
+ pub fn ostree_repo_write_content(
+ self_: *mut OstreeRepo,
+ expected_checksum: *const c_char,
+ object_input: *mut gio::GInputStream,
+ length: u64,
+ out_csum: *mut *mut [u8; 32],
+ cancellable: *mut gio::GCancellable,
+ error: *mut *mut glib::GError,
+ ) -> gboolean;
+ }
+}
assert_test_file(checkout_dir.path());
}
+
+#[test]
+fn should_write_content_to_repo() {
+ let src = TestRepo::new();
+ let mtree = create_mtree(&src.repo);
+ let checksum = commit(&src.repo, &mtree, "test");
+
+ let dest = TestRepo::new();
+ let objects = src
+ .repo
+ .traverse_commit(&checksum, -1, NONE_CANCELLABLE)
+ .expect("traverse");
+ for obj in objects {
+ let (stream, len) = src
+ .repo
+ .load_object_stream(obj.object_type(), obj.checksum(), NONE_CANCELLABLE)
+ .expect("load object stream");
+ if obj.object_type() == ObjectType::File {
+ let out_csum = dest
+ .repo
+ .write_content(None, &stream, len, NONE_CANCELLABLE)
+ .expect("write content");
+
+ assert_eq!(out_csum.to_string(), obj.checksum());
+ }
+ }
+}